home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / web / fweb / fweb-1.40 / manual / f0to_web.web < prev    next >
Text File  |  1993-10-29  |  701b  |  31 lines

  1. @z --- f0to_web.web ---
  2.  
  3. A simple Fortran example (that does nothing at all).
  4.  
  5. @x
  6. @n
  7. @* The MAIN PROGRAM.  {\it (Explain the purpose of the code here, using the
  8. full power of \TeX\ to help you.)}
  9. @a
  10.     program main
  11.  
  12. C Do the computation of~$\alpha$.
  13.     call compute
  14.     end
  15.  
  16. @* COMPUTATIONAL ROUTINES.  {\it (Explain the general philosophy of the
  17. computational algorithm here.)}
  18. @a
  19.     subroutine compute
  20.     call compute1
  21.     end
  22.  
  23. @ {\it (Other computational routines should be minor sections, all grouped
  24. under the major section called ``\.{COMPUTATIONAL ROUTINES}''.)}
  25. @a
  26.     subroutine compute1
  27.     end
  28.  
  29. @* INDEX.  {\it (An index is produced automatically.  It's customary to make
  30. the index a separate major section.)}
  31.